home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / ppc-amigaos / include / clib / rexxsyslib_protos.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  1KB  |  41 lines

  1. #ifndef  CLIB_REXXSYSLIB_PROTOS_H
  2. #define  CLIB_REXXSYSLIB_PROTOS_H
  3.  
  4. /*
  5. **    $VER: rexxsyslib_protos.h 36.3 (19.2.91)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. /*--- functions in V33 or higher (Release 1.2) ---*/
  15. #ifndef  EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18. #ifndef  REXX_RXSLIB_H
  19. #include <rexx/rxslib.h>
  20. #endif
  21. #ifndef  REXX_REXXIO_H
  22. #include <rexx/rexxio.h>
  23. #endif
  24.  
  25. UBYTE *CreateArgstring( UBYTE *string, unsigned long length );
  26. void DeleteArgstring( UBYTE *argstring );
  27. ULONG LengthArgstring( UBYTE *argstring );
  28. struct RexxMsg *CreateRexxMsg( struct MsgPort *port, UBYTE *extension,
  29.     UBYTE *host );
  30. void DeleteRexxMsg( struct RexxMsg *packet );
  31. void ClearRexxMsg( struct RexxMsg *msgptr, unsigned long count );
  32. BOOL FillRexxMsg( struct RexxMsg *msgptr, unsigned long count,
  33.     unsigned long mask );
  34. BOOL IsRexxMsg( struct RexxMsg *msgptr );
  35.  
  36.  
  37. void LockRexxBase( unsigned long resource );
  38. void UnlockRexxBase( unsigned long resource );
  39.  
  40. #endif     /* CLIB_REXXSYSLIB_PROTOS_H */
  41.